home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-07-05 | 3.3 KB | 98 lines | [TEXT/MPS ] |
- ##################################################################################################
- ## ##
- ## Program Name: Stiletto ##
- ## ##
- ## File Name: StilettoVars ##
- ## ##
- ## © Apple Computer, Inc. 1992-1995 ##
- ## All Rights Reserved ##
- ## ##
- ## Revision History: ##
- ## ##
- ## Date Who Modification ##
- ## ##
- ## 1992-10-26 Chris Halim Original version ##
- ## 1995-06-26 Jaakko Railo Version 2.0 ##
- ## ##
- ##################################################################################################
-
-
- # {StilettoDir} - directory containing Stiletto files.
- Set StilettoDir `Directory`: # get the parent directory
- Export StilettoDir
-
- # {ScriptsDir} - directory containing Stiletto build scripts.
- Set ScriptsDir "{StilettoDir}BuildScripts:"
- Export ScriptsDir
-
- # {SOURCESDir} - directory containing Stiletto sources.
- Set SOURCESDir "{StilettoDir}Sources:"
- Export SOURCESDir
-
- # {ModuleSourcesDir} - directory containing modules sources.
- Set ModuleSourcesDir "{StilettoDir}ModuleSources:"
- Export ModuleSourcesDir
-
- # {TelephoneIncludes} - directory containing Telephone headers.
- if ("{TelephoneIncludes}" == "") # if not already defined
- Set TelephoneIncludes "{StilettoDir}Telephones:"
- Export TelephoneIncludes
- end
-
- # {TelephoneToolIncludes} - directory containing Telephone tool headers.
- if ("{TelephoneToolIncludes}" == "") # if not already defined
- Set TelephoneToolIncludes "{StilettoDir}Telephones:"
- Export TelephoneToolIncludes
- end
-
- # {TelephoneLibraries} - directory containing Telephone libraries.
- if ("{TelephoneLibraries}" == "") # if not already defined
- Set TelephoneLibraries "{StilettoDir}Telephones:"
- Export TelephoneLibraries
- end
-
- # {TARGET68KDir} - directory to place 68K target files.
- Set TARGET68KDir "{StilettoDir}Target:"
- Export TARGET68KDir
-
- # {TARGETPPCDir} - directory to place PPC target files.
- Set TARGETPPCDir "{StilettoDir}Target:"
- Export TARGETPPCDir
-
- # {Modules68KDir} - directory to place 68K target modules.
- Set Modules68KDir "{TARGET68KDir}Modules-68K:"
- Export Modules68KDir
-
- # {ModulesPPCDir} - directory to place PPC target modules.
- Set ModulesPPCDir "{TARGETPPCDir}Modules-PPC:"
- Export ModulesPPCDir
-
- # {HEADERSDir} - directory containing Stiletto headers.
- Set HEADERSDir "{StilettoDir}Headers:"
- Export HEADERSDir
-
- # {REZDir} - directory containing resource files.
- Set REZDir "{StilettoDir}Rez:"
- Export REZDir
-
- # {TEMPDir} - directory to place temporary files (objects files).
- if ("{TEMPDir}" == "") # if not already defined
- Set TEMPDir "{StilettoDir}Temp:"
- Export TEMPDir
- end
-
- # {OBJECTS68KDir} - directory to place 68K object files.
- Set OBJECTS68KDir "{TEMPDir}Objects68K:"
- Export OBJECTS68KDir
-
- # {OBJECTSPPCDir} - directory to place PPC object files.
- Set OBJECTSPPCDir "{TEMPDir}ObjectsPPC:"
- Export OBJECTSPPCDir
-
- # {DEBUGOptions} - other C compiler options to be used for this build.
- if ("{DEBUGOptions}" == "") # if not already defined
- Set DEBUGOptions "-d qDEBUG"
- # Set DEBUGOptions ""
- Export DEBUGOptions
- end
-